home *** CD-ROM | disk | FTP | other *** search
/ X User Tools / X User Tools (O'Reilly and Associates)(1994).ISO / sun4c / archive / tcltk.z / tcltk / slib / tk / demos / mkScroll.tcl < prev    next >
Text File  |  1994-09-20  |  3KB  |  85 lines

  1. # mkScroll w
  2. #
  3. # Create a top-level window containing a simple canvas that can
  4. # be scrolled in two dimensions.
  5. #
  6. # Arguments:
  7. #    w -    Name to use for new top-level window.
  8.  
  9. proc mkScroll {{w .cscroll}} {
  10.     catch {destroy $w}
  11.     toplevel $w
  12.     dpos $w
  13.     wm title $w "Scrollable Canvas Demonstration"
  14.     wm iconname $w "Canvas"
  15.     wm minsize $w 100 100
  16.     set c $w.frame.c
  17.  
  18.     message $w.msg -font -Adobe-Times-Medium-R-Normal-*-180-* -aspect 300 \
  19.         -relief raised -bd 2 -text "This window displays a canvas widget that can be scrolled either using the scrollbars or by dragging with button 2 in the canvas.  If you click button 1 on one of the rectangles, its indices will be printed on stdout."
  20.     frame $w.frame -relief raised -bd 2
  21.     button $w.ok -text "OK" -command "destroy $w"
  22.     pack $w.msg -side top -fill x
  23.     pack $w.ok -side bottom -pady 5
  24.     pack $w.frame -side top -expand yes -fill both
  25.  
  26.     canvas $c -scrollregion {-10c -10c 50c 20c} \
  27.         -xscroll "$w.frame.hscroll set" -yscroll "$w.frame.vscroll set"
  28.     scrollbar $w.frame.vscroll  -relief sunken -command "$c yview"
  29.     scrollbar $w.frame.hscroll -orient horiz -relief sunken -command "$c xview"
  30.     pack $w.frame.vscroll -side right -fill y
  31.     pack $w.frame.hscroll -side bottom -fill x
  32.     pack $c -expand yes -fill both
  33.  
  34.     set bg [lindex [$c config -bg] 4]
  35.     for {set i 0} {$i < 20} {incr i} {
  36.     set x [expr {-10 + 3*$i}]
  37.     for {set j 0; set y -10} {$j < 10} {incr j; incr y 3} {
  38.         $c create rect ${x}c ${y}c [expr $x+2]c [expr $y+2]c \
  39.             -outline black -fill $bg -tags rect
  40.         $c create text [expr $x+1]c [expr $y+1]c -text "$i,$j" \
  41.         -anchor center -tags text
  42.     }
  43.     }
  44.  
  45.     $c bind all <Any-Enter> "scrollEnter $c"
  46.     $c bind all <Any-Leave> "scrollLeave $c"
  47.     $c bind all <1> "scrollButton $c"
  48.     bind $c <2> "$c scan mark %x %y"
  49.     bind $c <B2-Motion> "$c scan dragto %x %y"
  50. }
  51.  
  52. proc scrollEnter canvas {
  53.     global oldFill
  54.     set id [$canvas find withtag current]
  55.     if {[lsearch [$canvas gettags current] text] >= 0} {
  56.     set id [expr $id-1]
  57.     }
  58.     set oldFill [lindex [$canvas itemconfig $id -fill] 4]
  59.     if {[tk colormodel $canvas] == "color"} {
  60.     $canvas itemconfigure $id -fill SeaGreen1
  61.     } else {
  62.     $canvas itemconfigure $id -fill black
  63.     $canvas itemconfigure [expr $id+1] -fill white
  64.     }
  65. }
  66.  
  67. proc scrollLeave canvas {
  68.     global oldFill
  69.     set id [$canvas find withtag current]
  70.     if {[lsearch [$canvas gettags current] text] >= 0} {
  71.     set id [expr $id-1]
  72.     }
  73.     $canvas itemconfigure $id -fill $oldFill
  74.     $canvas itemconfigure [expr $id+1] -fill black
  75. }
  76.  
  77. proc scrollButton canvas {
  78.     global oldFill
  79.     set id [$canvas find withtag current]
  80.     if {[lsearch [$canvas gettags current] text] < 0} {
  81.     set id [expr $id+1]
  82.     }
  83.     puts stdout "You buttoned at [lindex [$canvas itemconf $id -text] 4]"
  84. }
  85.